ExtraRequestData Property
In This Topic
Gets the extra request data.
Syntax
'Declaration
Public Property ExtraRequestData As System.Collections.Generic.Dictionary(Of String,Object)
'Usage
Dim instance As CollectionViewRequest(Of T)
Dim value As System.Collections.Generic.Dictionary(Of String,Object)
instance.ExtraRequestData = value
value = instance.ExtraRequestData
public System.Collections.Generic.Dictionary<string,object> ExtraRequestData {get; set;}
public read-write property ExtraRequestData: System.Collections.Generic.Dictionary;
public function get,set ExtraRequestData : System.Collections.Generic.Dictionary
public: __property System.Collections.Generic.Dictionary<string*,Object*>* get_ExtraRequestData();
public: __property void set_ExtraRequestData(
System.Collections.Generic.Dictionary<string*,Object*>* value
);
public:
property System.Collections.Generic.Dictionary<String^,Object^>^ ExtraRequestData {
System.Collections.Generic.Dictionary<String^,Object^>^ get();
void set ( System.Collections.Generic.Dictionary<String^,Object^>^ value);
}
See Also